byte_array
Functions
Link copied to clipboard
Creates a byte_array from a Base64 string.
Link copied to clipboard
Creates a byte_array from a hexadecimal string.
Link copied to clipboard
Creates a byte_array from a list of integers.
Link copied to clipboard
pure function join_to_text([separator: text], [prefix: text], [postfix: text], [limit: integer?], [truncated: text], [transform: (integer) -> text]): text
Creates a text from all the elements separated using separator
and using the given prefix
and postfix
if supplied.
If the iterable is large, you can specify a non-negative value of limit
, in which case only the first limit
of elements will be appended, followed by the truncated
text (which defaults to "...").
Link copied to clipboard
Repeats the byte_array 'n' times.
Link copied to clipboard
Returns a reversed copy of the byte_array.
Link copied to clipboard
Returns the SHA256 digest of the byte_array.
Link copied to clipboard
Returns a sub-array of the byte_array from the specified start index.
Returns a sub-array of the byte_array from the specified start index to the end index.